home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource3 / 161_01 / 601.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-08-30  |  119 b   |  14 lines

  1. #include "timer1.h"
  2.  
  3. int i, absi;
  4.     
  5. DO_STMT("if-else")
  6.     if (i >= 0)
  7.         absi = i;
  8.     else
  9.         absi = -i;
  10.  
  11. OD
  12.  
  13. }
  14.